home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: DataFilePane.h,v 1.6 1993/05/30 09:10:05 davis Exp $ */
-
- #import "FunctionPane.h"
-
- #define XCOL 0
- #define YCOL 1
- #define YDELTACOL 2
- #define YLOWCOL 3
- #define YHIGHCOL 4
- #define BOXWIDTHCOL 5
-
- #define USE_DELTA 0
-
- @interface DataFilePane:FunctionPane
- {
- id detailedButton;
- id colRadioMatrix;
- id infoField;
- id infoLine2;
-
- id xColField;
- id yColField;
- id yDeltaColField;
- id yLowColField;
- id yHighColField;
- id boxWidthColField;
- }
-
- - init;
-
- - setDetailed:sender;
- - setColumnsData:sender;
- - setYDiff:sender;
-
- - (BOOL)updateStatus:aStatus doc:aDoc;
-
- @end
-